projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a6d6a87
)
(ebnf-yac-token-table): Use mapc rather than mapcar.
author
Glenn Morris
<rgm@gnu.org>
Sat, 13 Oct 2007 03:00:16 +0000
(
03:00
+0000)
committer
Glenn Morris
<rgm@gnu.org>
Sat, 13 Oct 2007 03:00:16 +0000
(
03:00
+0000)
lisp/progmodes/ebnf-yac.el
patch
|
blob
|
history
diff --git
a/lisp/progmodes/ebnf-yac.el
b/lisp/progmodes/ebnf-yac.el
index c1b00bdddfc386a6c4502678c3c084a6158f44c0..14640649d02bb1cc990bd8dc95d2d29c60d62085 100644
(file)
--- a/
lisp/progmodes/ebnf-yac.el
+++ b/
lisp/progmodes/ebnf-yac.el
@@
-273,12
+273,12
@@
;; control character & 8-bit character are set to `error'
(let ((table (make-vector 256 'error)))
;; upper & lower case letters:
- (mapc
ar
+ (mapc
#'(lambda (char)
(aset table char 'non-terminal))
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz")
;; printable characters:
- (mapc
ar
+ (mapc
#'(lambda (char)
(aset table char 'character))
"!#$&()*+-.0123456789=?@[\\]^_`~")